body {
    font-family: 'Arial', sans-serif;
    margin: 0px;
    text-align: center;
    background-color: antiquewhite;
    overflow-x: hidden;
}

button {
    background-color: #333333;
    width: 80px;
    height: 30px;
    color: azure;
}

a {
    color: aliceblue;
}

nav {
    height: 50px;
    padding-top: 20px;
}

main {
    width: 80%;
    height: 80%;
    margin: 0 auto;
}

h1 {
    font-size: 54px;
    color: #EE0606;
    font-style: italic;
    overflow: hidden;
}

h2 {
    color: #b32929;
}

footer {
    color: #000000;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#main_image {
    width: 40%;
}

header {
    background-image: url(red\ wall.jpg);
    padding-bottom: 5px;
    padding-top: 5px;
}

#header_image {
    width: 10%;
}

.icon {
    margin-top: 40px;
    width: 130px;
}

#hand {
    width: 5%;
    margin: 0 20px;
}

h3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-row {
    display: flex;
    justify-content: space-around; /* or use space-between/center */
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
 }
 
 .img-box {
    flex: 1 1 30%; /* makes 3 per row */
    max-width: 30%;
    text-align: center;
 }
 
 .img-box img {
    width: 100%; /* make the image fit the box */
    height: auto;
 }
 
 .img-text {
    font-weight: bold;
    margin-bottom: 10px;
 }

 .img-box a img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
 }
 
 .img-box a:hover img {
    transform: scale(1.1); /* enlarge on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* optional shadow effect */
 }
 
 .product {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    align-items: center;
 }
 
 .product-image {
    flex: 1 1 40%;
    text-align: center;
 }
 
 .product-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
 }
 
 .product-info {
    flex: 1 1 50%;
 }
 
 .product-info h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
 }
 
 .product-info p {
    margin-bottom: 10px;
    line-height: 1.5;
 }
 
 .product-info a {
    color: #0066cc;
    text-decoration: underline;
 }
 